🏠 Vault / School / H2 Math / MIT_Project / F1_Tyre_Strategy_Concrete_Plan.md

Concrete MIT Plan: F1 Wet-to-Slick Tyre Strategy

<#>Concrete MIT Plan: F1 Wet-to-Slick Tyre Strategy

<##>Final project title The Crossover Lap: Using Regression and Optimisation to Decide When F1 Drivers Should Switch from Wet Tyres to Slicks

Singapore-facing alternative: Rain at Marina Bay: Modelling the Optimal Tyre-Switch Lap in a Weather-Affected Formula 1 Race

<##>Research question During a mixed-weather Formula 1 race, how can mathematics determine the lap on which switching from intermediate/wet tyres to slick tyres minimises total race time?

<##>Exact H2 Math concept link

<###>Primary H2 concept: 9758 Section 6.6 β€” Correlation and linear regression This should be the main advertised syllabus link.

Official syllabus items that this project directly uses:

Project link: - I(x) = a_i + b_i x for intermediate/wet tyres; - S(x) = a_s + b_s x for slick tyres. <###>Supporting H2 concept 1: 9758 Section 2.1 β€” Sequences and series Official syllabus items used: Project link: <###>Supporting H2 concept 2: 9758 Section 5.1 β€” Differentiation / optimisation Official syllabus items used: Project link: <###>Optional extension: 9758 Section 6.1/6.2 β€” Probability / expected value Only use this if there is time.

Project link:

- Expected time = p(time if rain returns) + (1-p)(time if track keeps drying).

Recommendation: keep the core as Section 6.6 regression + Section 2.1 summation + Section 5.1 optimisation. Do not make probability the main focus.

<##>Mathematical model

Let:

Use regression to fit: <###>Basic crossover lap The simplest crossover is where slicks and intermediates are predicted to be equally fast:

I(l) = S(l)

a_i + b_i l = a_s + b_s l

So:

l = (a_s - a_i) / (b_i - b_s)

Interpretation:

<###>Better race-strategy model with pit-stop loss The crossover alone is not enough because pitting costs time.

Total predicted time if switching on lap k:

T(k) = sum from l = 1 to k-1 of I(l) + P + sum from l = k to N of S(l)

Using the arithmetic-series formula:

sum from l = m to n of (a + b l) = (n - m + 1)a + b[n(n+1) - (m-1)m]/2

This gives a concrete formula for T(k). Then choose the integer k that gives the smallest T(k).

Decision rule:

Switch when the future time saved by slicks exceeds the pit-stop loss:

sum from l = k to N of [I(l) - S(l)] > P

<##>Data plan

<###>Primary dataset Use FastF1 on a mixed-weather race with both slick and intermediate/wet tyres.

Recommended primary case study:

Backup case studies: <###>Variables to extract From FastF1: Create a new variable: <###>Cleaning rules Remove: Use lap time in seconds.

<##>Analysis plan

<###>Step 1 β€” Pick the race window Choose a window where the track is drying or changing, e.g. laps where some drivers use intermediates and others switch to slicks.

Output:

<###>Step 2 β€” Plot scatter diagrams Make two scatter plots: MIT/H2 link: <###>Step 3 β€” Calculate PMCC r-values Calculate r for each tyre category.

Interpretation:

MIT/H2 link: <###>Step 4 β€” Fit regression lines Fit: Use least squares regression.

MIT/H2 link:

<###>Step 5 β€” Find the crossover lap Solve:

I(l) = S(l)

Then interpret whether the answer is realistic.

<###>Step 6 β€” Include pit-stop loss Pick a realistic pit-loss value P, or let the user adjust P in the simulator.

Then compute:

T(k) = sum from l = 1 to k-1 of I(l) + P + sum from l = k to N of S(l)

for each possible switch lap k.

MIT/H2 link:

<###>Step 7 β€” Choose the optimal switch lap Plot: The minimum point gives the recommended switch lap.

Because k is an integer:

<###>Step 8 β€” Validate against the real race Compare the model’s recommended switch lap with actual pit decisions by top drivers.

Discuss why they may differ:

<##>Final product plan

Best product: Interactive tyre-switch simulator/dashboard

Minimum required screens:

  1. Race and data window selected.
  2. Scatter plot of lap time vs lap number by tyre category.
  3. Regression lines I(l) and S(l).
  4. Crossover lap calculation.
  5. Slider for pit-stop loss P.
  6. Graph of T(k) against switch lap k.
  7. Final recommendation: "Switch on lap __".
  8. Limitations and assumptions.
If there is not enough time for a full app, make a polished notebook or slide deck with the same graphs.

<##>Two-page mathematical report structure

Even if the product is clear, prepare a short report because it protects you during assessment.

<###>Page 1: Model setup and regression

<###>Page 2: Optimisation and conclusion <##>Annex checklist Required by MIT guide: <##>Suggested group role split

<###>Person 1 β€” Data lead

<###>Person 2 β€” Maths lead <###>Person 3 β€” Product/presentation lead If working in a pair, combine data + product for one person and maths + report for the other.

<##>3-day execution timeline

<###>Day 1 β€” Data and model

<###>Day 2 β€” Optimisation and product <###>Day 3 β€” Polish and submission <##>Teacher pitch We are investigating a real decision in Formula 1 race strategy: when a driver should switch from wet/intermediate tyres to slick tyres as the track dries. We use H2 Math Section 6.6, correlation and linear regression, to model lap-time trends for each tyre type, then use finite series and optimisation to choose the switch lap that minimises total predicted race time. The final product will be an interactive simulator showing the regression model, crossover lap, and optimal pit lap under different pit-stop losses.